home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 4_misc / set / security < prev    next >
Text File  |  2001-03-21  |  912b  |  29 lines

  1. Synopsis:
  2.    set security [<number>]
  3.  
  4. Description:
  5.    This variable allows the user to enable a number of security options,
  6.    with the intent of preventing a rogue hook or loaded script from
  7.    doing any potential damage.
  8.  
  9.    The setting is based on a set of bits, each of which can be enabled or
  10.    disabled independently or in any combination.  Each bit has a specific
  11.    value associated with it.  The bits are additive, much like the DEBUG
  12.    setting.
  13.  
  14.       Bit  Value   Purpose
  15.        0     1     prevents variables from being used as commands
  16.        1     2     the EXEC command may only be used interactively
  17.        2     4     the SET command may only be used interactively
  18.  
  19. Examples:
  20.    To disable EXEC and SET inside aliases or hooks:
  21.       /set security 6
  22.  
  23.    To disable everything listed:
  24.       /set security 7
  25.  
  26. See Also:
  27.    set(4) debug, exec_protection, novice
  28.  
  29.